i want to call the function when i clicked on the checkbox using prototype.js.here obj[i] contents j

Posted by vicky on Stack Overflow See other posts from Stack Overflow or by vicky
Published on 2010-03-30T14:10:11Z Indexed on 2010/03/30 14:13 UTC
Read the original article Hit count: 363

 DeCheBX = $('MyDiv').insert(new Element('input', { 'type': 'checkbox', 'id': "Img" + obj[i].Nam, 'value': obj[i].IM, 'onClick': SayHi(this)           }));
                        document.body.appendChild(DeCheBX);
                        DeImg = $('MyDiv').insert(new Element('img', { 'id': "Imgx" + obj[i].Nam, 'src': obj[i].IM }));
                        document.body.appendChild(DeImg);
                    }
                    SayHi = function(x) {
                        try {

                                if($(x).checked == true)
                                {
                                    alert("press" + x);
                                }

                        }
                        catch (e) {
                            alert("error");

© Stack Overflow or respective owner

Related posts about JavaScript

Related posts about javascript-framework